home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 1
/
Amiga Tools.iso
/
egs-tools
/
egs_demo-version
/
egs_devels
/
examples
/
stack_language
/
includes.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-06-06
|
1KB
|
52 lines
/*
** Extra Amiga includes
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dos/dos.h>
#include <exec/memory.h>
#include <proto/dos.h>
#include <proto/exec.h>
/*
** These are all EGS includes
**
*/
#include <egs/egs.h>
#include <egs/egsblit.h>
#include <egs/egslayers.h>
#include <egs/egsgfx.h>
#include <egs/egsintui.h>
#include <egs/egsgadbox.h>
#include <egs/egsrequest.h>
#include <egs/egb/gbmenuselect.h>
#include <egs/egb/gbradio.h>
#include <egs/egb/gbscrollbox.h>
#include <egs/egb/gbselect.h>
#include <egs/egb/gbsets.h>
#include <egs/egb/gbtextinfo.h>
/*
** Include proto files and pragmas
*/
#include <egs/proto/egs.h>
#include <egs/proto/egsblit.h>
#include <egs/proto/egslayers.h>
#include <egs/proto/egsgfx.h>
#include <egs/proto/egsintui.h>
#include <egs/proto/egsgadbox.h>
#include <egs/proto/egsrequest.h>
#include <egs/proto/gbmenuselect.h>
#include <egs/proto/gbradio.h>
#include <egs/proto/gbscrollbox.h>
#include <egs/proto/gbselect.h>
#include <egs/proto/gbsets.h>
#include <egs/proto/gbtextinfo.h>
/*
*/